#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <iostream.h>
#include <vector.h>


#ifdef MAIN
#define error1_test main
#endif
#endif
int error1_test(int, char**)
{
  cout<<"Results of error1_test:"<<endl;
  vector<int> v;

#ifndef ACORN_CFRONT
  v.pop_back(); // Generates an empty object error.
#endif
  return 0;
}
